HTTP Status re-fix

James Peret 8 years ago
parent
commit
7b4d4036dc
1 changed files with 3 additions and 1 deletions
  1. 3 1
      app/models/agents/http_status_agent.rb

+ 3 - 1
app/models/agents/http_status_agent.rb

@@ -104,7 +104,9 @@ module Agents
104 104
 
105 105
     def ping(url)
106 106
       result = faraday.get url
107
-      result.status != nil ? result : nil
107
+      if result.status != 0
108
+        return result
109
+      end
108 110
     rescue
109 111
       nil
110 112
     end